From 9b7148cdbd052394aafdf295c1146ade312827f5 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Fri, 28 Apr 2017 22:41:50 +0100 Subject: [PATCH] build: Use link_whole for GDK backends When linking libgdk4 to each backend's static library, we want to use the whole-archive support. --- gdk/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/meson.build b/gdk/meson.build index c6f4735d5b..8cd144e937 100644 --- a/gdk/meson.build +++ b/gdk/meson.build @@ -207,7 +207,7 @@ libgdk = static_library('gdk', '-DG_LOG_DOMAIN="Gdk"', '-DG_LOG_USE_STRUCTURED=1', ] + common_cflags, - link_with: gdk_backends, + link_whole: gdk_backends, link_args: common_ldflags) # We don't have link_with: to internal static libs here on purpose, just -- 2.30.2